alter table "Ambulance"	 add column "LocationId" integer references "Location"("LocationId");
alter table "AmbulanceReciept"	 add column "LocationId" integer references "Location"("LocationId");
update "Ambulance"	set "LocationId"=1;
update "AmbulanceReciept"	set "LocationId"=1;
insert into "LogType"( "LogTypeId","LogTypeName",true) values (80,'DriverDetail',true)
,(81,'AmbulanceReciept',true);